home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / FAN16.M3 < prev    next >
Text File  |  1996-04-01  |  4KB  |  151 lines

  1. name Fanuc 16M
  2.  
  3. % 00
  4. / 00
  5. O >4
  6. N >4
  7. G >2
  8. g >2 G
  9. X ->3.>4
  10. Y ->3.>4
  11. Z ->3.>4
  12. I ->3.>4
  13. J ->3.>4
  14. K ->3.>4
  15. Q ->3.>4
  16. R ->3.>4
  17. P >40
  18. F >3.1
  19. m >2 M
  20. H >2
  21. D >2
  22. T >2
  23. S >5
  24. M >2
  25. E >3.>6
  26. # >3
  27. w >3
  28. v >3.>4
  29. d >3.>4
  30.  
  31. ModalLetters X Y Z F R S M Q          # List of letters that are modal    
  32.  
  33. ModalGs 0 1 2 3 73 74 76 80 81 82 83 84 85  # List of g codes that are modal    
  34.  
  35. Sequence#s N 0 5 5                    # Char, freq, incr & start          
  36.  
  37. HCode X                               # X or X U  'Horizontal char.       
  38. VCode Y                               # Y or Y V  'Vertical char.         
  39. Dcode Z                               # Depth char.                       
  40. FeedCode F                            # Feed rate char.                   
  41.  
  42. Comment ( )                           # Begin End comment char.           
  43.  
  44. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  45. Coolant 8 9 7                         # On, Off & Mist m codes            
  46. DComp 41 42 40                        # Left, Right & Cancel m codes      
  47. LComp 43 49                           # On & Off codes                    
  48.  
  49. Feed G1                             # Linear move                       
  50. Rapid G0                            # Rapid positioning word            
  51. Cw G2                               # Circular move clockwise           
  52. Ccw G3                              # Circular move counter clockwise   
  53.  
  54. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  55.  
  56. CtrCode I J                           # I J or R or I J K L               
  57. Helical? Y
  58.  
  59. Spaces? Y                             # Y or N  'Spaces between words     
  60.  
  61. Incremental? N                        # Y or N  'Inc or abs output        
  62. CtrIncremental? Y                     # Y or N  'Inc or abs I & J         
  63. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  64.  
  65. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  66.  
  67.  
  68. Drill                                 # Drilling canned/manual cycle      
  69. G81 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  70. end cancel
  71.  
  72. Peck                                  # Pecking canned/manual cycle       
  73. G83 X[H] Y[V] Z[D] Q[VBite] R[Vclear] F[FRate]
  74. end cancel
  75.  
  76. Tap                                   # Tapping canned/manual cycle       
  77. M135
  78. G84 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  79. end cancel
  80.  
  81. LTap                                  # Left handed tapping cycle         
  82. G74 X[H] Y[V] Z[D] R[Vclear] F[Frate]
  83. end cancel
  84.  
  85. Ream                                  # Reaming canned/manual cycle       
  86. G85 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  87. end cancel
  88.  
  89. Bore                                  # Boring canned/manual cycle        
  90. G86 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  91. end cancel
  92.  
  93. Back                                  # Back boring canned/manual cycle   
  94. G87 X[H] Y[V] Z[D] R[Vclear] F[FRate]
  95. end cancel
  96.  
  97. Cancel                                # Cancel a canned/manual cycle      
  98. G80
  99. end
  100.  
  101. StartCode                             # Start of the program              
  102. %0
  103. O[Program#]
  104. End
  105.  
  106. 1stToolChange                         # First tool change                 
  107. G0 G17 G40 G94
  108. g91 G28 Z0
  109. G28 X0 Y0
  110. G90 G92 G53 X0 Y0 Z0
  111. G52 X0 Y0
  112. M1
  113. T[Tool] M6
  114. G[Work] G90 G0 X[H] Y[V] S[Speed] M[Direct]
  115. m56 H1 D2 M25
  116. G43 Z[D] H1
  117. M[Cool] M26
  118. End
  119.  
  120. Infeed                                # Enable cutter comp                
  121. G[Side] X[H] Y[V] D[DComp] F[FRate]
  122. end
  123.  
  124. Outfeed                               # Disable cutter comp               
  125. G1 G40 X[H] Y[V]
  126. end
  127.  
  128. ToolChange                            # Secondary tool changes            
  129. M9
  130. G0 g91 G28 Z0 M19
  131. M1
  132. T[Tool] M6
  133. M1
  134. G[Work] G90 G0 X[H] Y[V] S[Speed] M[Direct]
  135. m56 H1 D2 M25
  136. G43 Z[D] H1
  137. M[Cool] M26
  138. End
  139.  
  140. EndCode                               # End of the program                
  141. G0 g91 G28 Z0
  142. G49 M9
  143. G0 g91 G28 M19
  144. M5
  145. M30
  146. %0
  147. End
  148.  
  149. Replace "w" with " "
  150. Replace "v" with "="
  151.